//04_Loop concept //parc_05 //wap to print table number #include #include void main() { int i,n; clrscr(); printf("Enter table number:"); scanf("%d",&n); i=1; while (i<=10) { printf("%d \n",i*n); i++; } getch(); } /* ------output------ Enter table number:2 2 4 6 8 10 12 14 16 18 20 */